home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBTcpip / DialogThread.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.5 KB  |  62 lines

  1. /*****************************************
  2. HTBtcpip.dll
  3.  
  4. Copyright TransEra Corporation 1999
  5.  
  6. DialogThread.h
  7. ****************************************/
  8.  
  9. #if !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  10. #define AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. // DialogThread.h : header file
  17. //    jont 7/99
  18.  
  19.  
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // DialogThread thread
  23.  
  24. class DialogThread : public CWinThread
  25. {
  26.     DECLARE_DYNCREATE(DialogThread)
  27. protected:
  28.     DialogThread();           // protected constructor used by dynamic creation
  29.  
  30. // Attributes
  31. public:
  32.  
  33. // Operations
  34. public:
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(DialogThread)
  39.     public:
  40.     virtual BOOL InitInstance();
  41.     virtual int ExitInstance();
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45. protected:
  46.     virtual ~DialogThread();
  47.  
  48.     // Generated message map functions
  49.     //{{AFX_MSG(DialogThread)
  50.         // NOTE - the ClassWizard will add and remove member functions here.
  51.     //}}AFX_MSG
  52.  
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57.  
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60.  
  61. #endif // !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  62.